home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 101-125 / scopedisk118 / cosmicquest / ships.h < prev   
C/C++ Source or Header  |  1995-03-19  |  2KB  |  50 lines

  1. /*
  2. struct NShip
  3.   {
  4.   char name[SHIPNAMELENGTH];
  5.   int size;
  6.   int capacity;
  7.   int hyprange;
  8.   int hypspeed;
  9.   int speed;
  10.   int attack;
  11.   int attackno;
  12.   int shields;
  13.   int techcost;
  14.   int techlevel;
  15.   int special;
  16.   };*/
  17. struct NShip ship[SHIPNO]={
  18. {"Clearer"       ,   3,  0, 0, 0, 1, 1,20, 4,100,620,NOSPEC},
  19. {"UltraStinger"  ,   1,  0,50,50, 3, 8, 1, 4, 60,800,NOSPEC},
  20. {"Stinger"       ,   1,  0, 0, 0, 3, 7, 1, 2, 25,150,FASTEJECTABLE},
  21. {"Light Cruiser" ,   5,  0, 6, 1, 5,10, 1,10,100,100,NOSPEC},
  22. {"Space Cannon"  ,  10,  0, 0, 0, 3,25, 1, 2,120,550,NOSPEC},
  23. {"Destroyer"     ,  12,  0, 9, 2, 6,18, 1,10,110,310,NOSPEC},
  24. {"Battleship"    ,  25,  3, 8, 2, 6,18, 3,18,150,450,FASTEJECTER},
  25. {"Battlestar"    , 950,100, 9, 1, 8,15,15,40,900,950,FASTEJECTER},
  26. {"Heavy Cruiser" ,   8,  0, 8, 1, 7,13, 1,14,120,220,NOSPEC},
  27. {"Mothership"    , 100, 20,11, 1, 6,12, 2,24,230,620,NOSPEC},
  28. {"Satellite"     ,2000,  0, 0, 0, 9,12, 1, 6, 20,660,NOSPEC},
  29. {"Trans III"     ,  20,  8, 9, 2,10, 0, 0, 6,100,360,NOSPEC},
  30. {"UltraTrans"    ,  40, 30,50, 4,10, 0, 0, 8,160,900,NOSPEC},
  31. {"Glitter"       ,  20, 19, 0, 0,10, 0, 0, 0, 10,420,NOSPEC},
  32. {"Scout"         ,   2,  0,11, 3,10, 0, 0, 6, 50,180,NOSPEC},
  33. {"Transporter"   ,  10,  4, 4, 1,10, 0, 0, 6, 40, 50,NOSPEC},
  34. {"Spy Sat"       ,   1,  0, 9, 1,10, 0, 0,70,280,750,INVISIBLE},
  35. {"Torpedo"       ,   1,  0, 0, 0, 1,20, 1, 0, 45,240,KAMIKAZE|FASTEJECTABLE},
  36. {"Pirate"        ,  10,  3, 9, 2, 5, 6, 3,14,180,370,NOSPEC},
  37. {"Carrier"       ,  30,  5, 7, 1,10, 0, 0,28,100,430,FASTEJECTER},
  38. {"Q-Bomb"        ,  30,  0, 0, 0, 0, 0, 0, 0,350,950,STARKILLER},
  39. {"Trans II"      ,  10,  4, 9, 1, 0, 0, 0, 6, 70,210,NOSPEC},
  40. {"Sidewinder"    ,   1,  0, 0, 0, 1, 4, 1, 0,  5,240,FASTEJECTABLE|KAMIKAZE},
  41. {"Space Fighter" ,   2,  0, 0, 0, 3, 6, 2, 6, 60,470,FASTEJECTABLE},
  42. {"Light Carrier" ,  20,  5, 9, 2, 8, 2, 2,20,130,430,FASTEJECTER},
  43. {"Fleet Carrier" ,  30, 10, 8, 1, 8, 2, 3,24,160,520,FASTEJECTER},
  44. {"Defence Sat"   , 200, 20, 0, 0, 9,12,10,30,300,680,FASTEJECTER},
  45. {"Space Station" ,1000,120, 0, 0, 9,12,30,50,800,900,FASTEJECTER},
  46. {"Base Ship"     ,  80, 25,12, 1, 7,12, 2,30,230,620,FASTEJECTER},
  47. {"Ore Unit"      ,   1,  0, 0, 0,10, 0, 0, 0,MCOST,0,NOTPROD},
  48. {"Pop Unit"      ,   1,  0, 0, 0,10, 0, 0, 0, 20,  0,NOTPROD}
  49. };
  50.